home *** CD-ROM | disk | FTP | other *** search
/ CD Classic / CD CLASSIC #1.iso / mlink / atlwin.msl next >
Text File  |  1991-12-29  |  493b  |  18 lines

  1. ' ***************************************************
  2. ' *        Atlanta Windows RBBS Logon Script        *
  3. ' ***************************************************
  4. ' Note: ^M means Enter key
  5. first$ = "firstname^M"
  6. last$  = "lastname^M"
  7. pw$    = "password^M"
  8. MPRINT "Atlanta Windows Logon Script"
  9. WAITFOR "What is your FIRST name? "
  10. RPRINT first$
  11. WAITFOR "What is your LAST name? "
  12. RPRINT last$
  13. WAITFOR "Enter Password (dots echo)? "
  14. RPRINT pw$
  15. MPRINT "Sign-on Complete..."
  16. END
  17.  
  18.